1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 10:41:16 +02:00
nix/scripts/remove-patches.pl
2007-01-23 16:05:59 +00:00

18 lines
267 B
Perl
Executable file

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