1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/scripts/remove-patches.pl

19 lines
267 B
Perl
Raw Normal View History

#! /usr/bin/perl -w -I/home/eelco/nix/scripts
use strict;
use readmanifest;
for my $p (@ARGV) {
my %narFiles;
my %patches;
readManifest $p,
2007-01-23 11:05:59 -05:00
\%narFiles, \%patches;
%patches = ();
writeManifest $p,
2007-01-23 11:05:59 -05:00
\%narFiles, \%patches;
}